home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_2 / finditgui / install < prev    next >
Text File  |  1984-06-10  |  2KB  |  86 lines

  1. ; FindItGui installation script
  2. ; $VER: 1.15 (23.09.96) by Michael Griggs
  3.  
  4.  
  5. (set #askoptions-help
  6.             "You may select one, all or none of the choices specified."
  7. )
  8.  
  9.  
  10. (set exedest
  11.    (askdir
  12.       (prompt "Where do you wish to install FindItGui ?")
  13.       (help @askdir-help)
  14.       (default "SYS:WBStartup")
  15.    )
  16. )
  17.  
  18.  
  19. (set installdoc
  20.     (askoptions
  21.  
  22.         (prompt "Would you like to install the documentation?")
  23.         (help #askoptions-help)
  24.  
  25.         (choices
  26.  
  27.             "AmigaGuide"
  28.  
  29.         )
  30.     )
  31. )
  32.  
  33. (set docdest
  34.     (askdir
  35.         (prompt "Where do you wish to install the Documentation?")
  36.         (help @askdir-help)
  37.         (default exedest)
  38.     )
  39. )
  40.  
  41. (copyfiles
  42.    (prompt "Copying FindItGui...")
  43.    (source "FindItGui")
  44.    (infos)
  45.    (dest exedest)
  46. )
  47.  
  48.  
  49. (copyfiles
  50.     (prompt "Copying Documentation...")
  51.     (source "FindItGui.Guide")
  52.     (infos)
  53.     (dest exedest)
  54. )
  55.  
  56. (message "BGUI.Library is about to be installed\n"
  57.          "Version 39 (included with FindItGui)\n"
  58.          "is the only stable version.  If you\n"
  59.          "have a later version in LIBS: then\n"
  60.          "please install *this* version.\n"
  61.          "This will avoid any BGUI related\n"
  62.          "bugs."
  63. )
  64.  
  65. (copyfiles
  66.     (prompt "Copying bgui.library to LIBS:")
  67.     (source "libs/bgui.library")
  68.     (dest "LIBS:")
  69.     (confirm)
  70.     (help @copylib-help)
  71. )
  72.       
  73. (copylib
  74.     (prompt "Copy whatis.library to LIBS:")
  75.     (source "libs/whatis.library")
  76.     (dest "LIBS:")
  77.     (confirm)
  78.     (help @copylib-help)
  79. )
  80.  
  81. (set @default-dest exedest)
  82. (message "FindItGui is now ready to go!")
  83. (message "Please read the documentation for more information")
  84.  
  85.  
  86.